home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12b.lzh / Include / Utils / TaskUtils.i < prev    next >
Text File  |  1990-08-27  |  333b  |  17 lines

  1.  
  2. {
  3.     TaskUtils.i
  4.  
  5.     Declares the Task support routines CreateTask and DeleteTask.
  6.     The source for these routines is under Runtime/Extras.
  7. }
  8.  
  9. {$I "Include:Exec/Tasks.i"}
  10.  
  11. Function CreateTask(name : String; pri : Byte;
  12.             initPC : Address; stackSize : Integer) : TaskPtr;
  13.     External;
  14.  
  15. Procedure DeleteTask(tc : TaskPtr);
  16.     External;
  17.